home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Unix / cvs-960311 / info / cvs.info-4 (.txt) < prev    next >
GNU Info File  |  1996-01-24  |  49KB  |  962 lines

  1. This is Info file cvs.info, produced by Makeinfo-1.64 from the input
  2. file ./cvs.texinfo.
  3.    Copyright (C) 1992, 1993 Signum Support AB Copyright (C) 1993, 1994
  4. Free Software Foundation, Inc.
  5.    Permission is granted to make and distribute verbatim copies of this
  6. manual provided the copyright notice and this permission notice are
  7. preserved on all copies.
  8.    Permission is granted to copy and distribute modified versions of
  9. this manual under the conditions for verbatim copying, provided also
  10. that the section entitled "GNU General Public License" is included
  11. exactly as in the original, and provided that the entire resulting
  12. derived work is distributed under the terms of a permission notice
  13. identical to this one.
  14.    Permission is granted to copy and distribute translations of this
  15. manual into another language, under the above conditions for modified
  16. versions, except that the section entitled "GNU General Public License"
  17. and this permission notice may be included in translations approved by
  18. the Free Software Foundation instead of in the original English.
  19. File: cvs.info,  Node: diff options,  Next: diff examples,  Up: diff
  20. diff options
  21. ------------
  22.    These standard options are supported by `diff' (*note Common
  23. options::., for a complete description of them):
  24. `-D DATE'
  25.      Use the most recent revision no later than DATE.  See `-r' for how
  26.      this affects the comparison.
  27.      CVS can be configured to pass the `-D' option through to `rcsdiff'
  28.      (which in turn passes it on to `diff'.  GNU diff uses `-D' as a
  29.      way to put `cpp'-style `#define' statements around the output
  30.      differences.  There is no way short of testing to figure out how
  31.      CVS was configured.  In the default configuration CVS will use the
  32.      `-D DATE' option.
  33. `-k KFLAG'
  34.      Process RCS keywords according to KFLAG.  See co(1).
  35.      Local; run only in current working directory.
  36.      Examine directories recursively.  This option is on by default.
  37. `-r TAG'
  38.      Compare with revision TAG.  Zero, one or two `-r' options can be
  39.      present.  With no `-r' option, the working file will be compared
  40.      with the revision it was based on.  With one `-r', that revision
  41.      will be compared to your current working file.  With two `-r'
  42.      options those two revisions will be compared (and your working
  43.      file will not affect the outcome in any way).
  44.      One or both `-r' options can be replaced by a `-D DATE' option,
  45.      described above.
  46.    Any other options that are found are passed through to `rcsdiff',
  47. which in turn passes them to `diff'.  The exact meaning of the options
  48. depends on which `diff' you are using.  The long options introduced in
  49. GNU diff 2.0 are not yet supported in CVS.  See the documentation for
  50. your `diff' to see which options are supported.
  51. File: cvs.info,  Node: diff examples,  Prev: diff options,  Up: diff
  52. diff examples
  53. -------------
  54.    The following line produces a Unidiff (`-u' flag) between revision
  55. 1.14 and 1.19 of `backend.c'.  Due to the `-kk' flag no keywords are
  56. substituted, so differences that only depend on keyword substitution
  57. are ignored.
  58.      $ cvs diff -kk -u -r 1.14 -r 1.19 backend.c
  59.    Suppose the experimental branch EXPR1 was based on a set of files
  60. tagged RELEASE_1_0.  To see what has happened on that branch, the
  61. following can be used:
  62.      $ cvs diff -r RELEASE_1_0 -r EXPR1
  63.    A command like this can be used to produce a context diff between
  64. two releases:
  65.      $ cvs diff -c -r RELEASE_1_0 -r RELEASE_1_1 > diffs
  66.    If you are maintaining ChangeLogs, a command like the following just
  67. before you commit your changes may help you write the ChangeLog entry.
  68. All local modifications that have not yet been committed will be
  69. printed.
  70.      $ cvs diff -u | less
  71. File: cvs.info,  Node: export,  Next: history,  Prev: diff,  Up: Invoking CVS
  72. export--Export sources from CVS, similar to checkout
  73. ====================================================
  74.    * Synopsis: export [-flNn] -r rev|-D date [-d dir] module...
  75.    * Requires: repository.
  76.    * Changes: current directory.
  77.    This command is a variant of `checkout'; use it when you want a copy
  78. of the source for module without the CVS administrative directories.
  79. For example, you might use `export' to prepare source for shipment
  80. off-site.  This command requires that you specify a date or tag (with
  81. `-D' or `-r'), so that you can count on reproducing the source you ship
  82. to others.
  83.    The keyword substitution option `-kv' is always set when export is
  84. used.  This causes any RCS keywords to be expanded such that an import
  85. done at some other site will not lose the keyword revision information.
  86. There is no way to override this.  Note that this breaks the `ident'
  87. command (which is part of the RCS suite--see ident(1)) which looks for
  88. RCS keyword strings.  If you want to be able to use `ident' you must
  89. use `checkout' instead.
  90. * Menu:
  91. * export options::              export options
  92. File: cvs.info,  Node: export options,  Up: export
  93. export options
  94. --------------
  95.    These standard options are supported by `export' (*note Common
  96. options::., for a complete description of them):
  97. `-D DATE'
  98.      Use the most recent revision no later than DATE.
  99.      If no matching revision is found, retrieve the most recent
  100.      revision (instead of ignoring the file).
  101.      Local; run only in current working directory.
  102.      Do not run any checkout program.
  103.      Export directories recursively.  This is on by default.
  104. `-r TAG'
  105.      Use revision TAG.
  106.    In addition, these options (that are common to `checkout' and
  107. `export') are also supported:
  108. `-d DIR'
  109.      Create a directory called DIR for the working files, instead of
  110.      using the module name.  Unless you also use `-N', the paths
  111.      created under DIR will be as short as possible.
  112.      Only useful together with `-d DIR'.  With this option, CVS will
  113.      not shorten module paths in your working directory.  (Normally,
  114.      CVS shortens paths as much as possible when you specify an
  115.      explicit target directory.)
  116. File: cvs.info,  Node: history,  Next: import,  Prev: export,  Up: Invoking CVS
  117. history--Show status of files and users
  118. =======================================
  119.    * Synopsis:     history [-report] [-flags] [-options args] [files...]
  120.    * Requires: the file `$CVSROOT/CVSROOT/history'
  121.    * Changes: nothing.
  122.    CVS can keep a history file that tracks each use of the `checkout',
  123. `commit', `rtag', `update', and `release' commands.  You can use
  124. `history' to display this information in various formats.
  125.    Logging must be enabled by creating the file
  126. `$CVSROOT/CVSROOT/history'.
  127.    *Warning:* `history' uses `-f', `-l', `-n', and `-p' in ways that
  128. conflict with the normal use inside CVS (*note Common options::.).
  129. * Menu:
  130. * history options::             history options
  131. File: cvs.info,  Node: history options,  Up: history
  132. history options
  133. ---------------
  134.    Several options (shown above as `-report')  control  what kind of
  135. report is generated:
  136.      Report on each time commit was used (i.e., each time the
  137.      repository was modified).
  138.      Everything (all record types); equivalent to specifying
  139.      `-xMACFROGWUT'.
  140. `-m MODULE'
  141.      Report on a particular module.  (You can meaningfully use `-m'
  142.      more than once on the command line.)
  143.      Report on checked-out modules.
  144.      Report on all tags.
  145. `-x TYPE'
  146.      Extract a particular set of record types TYPE from the CVS
  147.      history.  The types are indicated by single letters, which you may
  148.      specify in combination.
  149.      Certain commands have a single record type:
  150.     `F'
  151.           release
  152.     `O'
  153.           checkout
  154.     `T'
  155.           rtag
  156.      One of four record types may result from an update:
  157.     `C'
  158.           A merge was necessary but collisions were detected (requiring
  159.           manual merging).
  160.     `G'
  161.           A merge was necessary and it succeeded.
  162.     `U'
  163.           A working file was copied from the repository.
  164.     `W'
  165.           The working copy of a file was deleted during update (because
  166.           it was gone from the repository).
  167.      One of three record types results from commit:
  168.     `A'
  169.           A file was added for the first time.
  170.     `M'
  171.           A file was modified.
  172.     `R'
  173.           A file was removed.
  174.    The options shown as `-flags' constrain or expand the report without
  175. requiring option arguments:
  176.      Show data for all users (the default is to show data only for the
  177.      user executing `history').
  178.      Show last modification only.
  179.      Show only the records for modifications done from the same working
  180.      directory where `history' is executing.
  181.    The options shown as `-options ARGS' constrain the report based on
  182. an argument:
  183. `-b STR'
  184.      Show data back to a record containing  the  string STR  in  either
  185.      the module name, the file name, or the repository path.
  186. `-D DATE'
  187.      Show data since DATE.  This is slightly different from the normal
  188.      use of `-D DATE', which selects the newest revision older than
  189.      DATE.
  190. `-p REPOSITORY'
  191.      Show data for a particular source repository  (you can specify
  192.      several `-p' options on the same command line).
  193. `-r REV'
  194.      Show records referring to revisions since the revision or tag
  195.      named REV appears in individual RCS files.  Each RCS file is
  196.      searched for the revision or tag.
  197. `-t TAG'
  198.      Show records since tag TAG was last added to the the history file.
  199.      This differs from the `-r' flag above in that it reads only the
  200.      history file, not the RCS files, and is much faster.
  201. `-u NAME'
  202.      Show records for user NAME.
  203. File: cvs.info,  Node: import,  Next: log,  Prev: history,  Up: Invoking CVS
  204. import--Import sources into CVS, using vendor branches
  205. ======================================================
  206.    * Synopsis: import [-options] repository vendortag releasetag...
  207.    * Requires: Repository, source distribution directory.
  208.    * Changes: repository.
  209.    Use `import' to incorporate an entire source distribution from an
  210. outside source (e.g., a source vendor) into your source repository
  211. directory.  You can use this command both for initial creation of a
  212. repository, and for wholesale updates to the module from the outside
  213. source.  *Note Tracking sources::, for a discussion on this subject.
  214.    The REPOSITORY argument gives a directory name (or a path to a
  215. directory) under the CVS root directory for repositories; if the
  216. directory did not exist, import creates it.
  217.    When you use import for updates to source that has been modified in
  218. your source repository (since a prior import), it will notify you of
  219. any files that conflict in the two branches of development; use
  220. `checkout -j' to reconcile the differences, as import instructs you to
  221.    If CVS decides a file should be ignored (*note cvsignore::.), it
  222. does not import it and prints `I ' followed by the filename
  223.    If the file `$CVSROOT/CVSROOT/cvswrappers' exists, any file whose
  224. names match the specifications in that file will be treated as packages
  225. and the appropriate filtering will be performed on the file/directory
  226. before being imported, *Note Wrappers::.
  227.    The outside source is saved in a first-level RCS branch, by default
  228. 1.1.1.  Updates are leaves of this branch; for example, files from the
  229. first imported collection of source will be revision 1.1.1.1, then
  230. files from the first imported update will be revision 1.1.1.2, and so
  231.    At least three arguments are required.  REPOSITORY is needed to
  232. identify the collection of source.  VENDORTAG is a tag for the entire
  233. branch (e.g., for 1.1.1).  You must also specify at least one
  234. RELEASETAG to identify the files at the leaves created each time you
  235. execute `import'.
  236. * Menu:
  237. * import options::              import options
  238. * import examples::             import examples
  239. File: cvs.info,  Node: import options,  Next: import examples,  Up: import
  240. import options
  241. --------------
  242.    This standard option is supported by `import' (*note Common
  243. options::., for a complete description):
  244. `-m MESSAGE'
  245.      Use MESSAGE as log information, instead of invoking an editor.
  246.    There are three additional special options.
  247. `-b BRANCH'
  248.      Specify a first-level branch other than 1.1.1.  Unless the `-b
  249.      BRANCH' flag is given, revisions will *always* be made to the
  250.      branch 1.1.1--even if a VENDORTAG that matches another branch is
  251.      given!  What happens in that case, is that the tag will be reset
  252.      to 1.1.1.  Warning: This behavior might change in the future.
  253. `-k SUBST'
  254.      Indicate the RCS keyword expansion mode desired.  This setting
  255.      will apply to all files created during the import, but not to any
  256.      files that previously existed in the repository.  See *Note
  257.      Substitution modes:: for a list of valid `-k' settings.
  258. `-I NAME'
  259.      Specify file names that should be ignored during import.  You can
  260.      use this option repeatedly.  To avoid ignoring any files at all
  261.      (even those ignored by default), specify `-I !'.
  262.      NAME can be a file name pattern of the same type that you can
  263.      specify in the `.cvsignore' file.  *Note cvsignore::.
  264. `-W SPEC'
  265.      Specify file names that should be filtered during import.  You can
  266.      use this option repeatedly.
  267.      SPEC can be a file name pattern of the same type that you can
  268.      specify in the `.cvswrappers' file. *Note Wrappers::.
  269. File: cvs.info,  Node: import examples,  Prev: import options,  Up: import
  270. import examples
  271. ---------------
  272.    *Note Tracking sources::, and *Note From files::.
  273. File: cvs.info,  Node: log,  Next: rdiff,  Prev: import,  Up: Invoking CVS
  274. log--Print out 'rlog' information for files
  275. ===========================================
  276.    * Synopsis: log [-l] rlog-options [files...]
  277.    * Requires: repository, working directory.
  278.    * Changes: nothing.
  279.    * Synonym: rlog
  280.    Display log information for files.  `log' calls the RCS utility
  281. `rlog', which prints all available information about the RCS history
  282. file.  This includes the location of the RCS file, the "head" revision
  283. (the latest revision on the trunk), all symbolic names (tags) and some
  284. other things.  For each revision, the revision number, the author, the
  285. number of lines added/deleted and the log message are printed.  All
  286. times are displayed in Coordinated Universal Time (UTC).  (Other parts
  287. of CVS print times in the local timezone).
  288. * Menu:
  289. * log options::                 log options
  290. * log examples::                log examples
  291. File: cvs.info,  Node: log options,  Next: log examples,  Up: log
  292. log options
  293. -----------
  294.    Only one option is interpreted by CVS and not passed on to `rlog':
  295.      Local; run only in current working directory.  (Default is to run
  296.      recursively).
  297.    By default, `rlog' prints all information that is available.  All
  298. other options (including those that normally behave differently) are
  299. passed through to `rlog' and restrict the output.  See rlog(1) for a
  300. complete description of options.  This incomplete list (which is a
  301. slightly edited extract from rlog(1)) lists all options that are useful
  302. in conjunction with CVS.
  303.    *Please note:*  There can be no space between the option and its
  304. argument, since `rlog' parses its options in a different way than CVS.
  305.      Print information about the revisions on the default branch,
  306.      normally the highest branch on the trunk.
  307. `-dDATES'
  308.      Print information about revisions with a checkin date/time in the
  309.      range given by the semicolon-separated list of dates.  The
  310.      following table explains the available range formats:
  311.     `D1<D2'
  312.     `D2>D1'
  313.           Select the revisions that were deposited between D1 and D2
  314.           inclusive.
  315.     `<D'
  316.     `D>'
  317.           Select all revisions dated D or earlier.
  318.     `D<'
  319.     `>D'
  320.           Select all revisions dated D or later.
  321.     `D'
  322.           Select the single, latest revision dated D or earlier.
  323.      The date/time strings D, D1, and D2 are in the free format
  324.      explained in co(1).  Quoting is normally necessary, especially for
  325.      < and >.  Note that the separator is a semicolon (;).
  326.      Print only the RCS pathname, working pathname, head, default
  327.      branch, access list, locks, symbolic names, and suffix.
  328.      Do not print the list of tags for this file.  This option can be
  329.      very useful when your site uses a lot of tags, so rather than
  330.      "more"'ing over 3 pages of tag information, the log information is
  331.      presented without tags at all.
  332.      Print only the name of the RCS history file.
  333. `-rREVISIONS'
  334.      Print information about revisions given in the comma-separated
  335.      list REVISIONS of revisions and ranges.  The following table
  336.      explains the available range formats:
  337.     `REV1:REV2'
  338.           Revisions REV1 to REV2 (which must be on the same branch).
  339.     `:REV'
  340.           Revisions from the beginning of the branch up to and
  341.           including REV.
  342.     `REV:'
  343.           Revisions starting with REV to the end of the branch
  344.           containing REV.
  345.     `BRANCH'
  346.           An argument that is a branch means all revisions on that
  347.           branch.  You can unfortunately not specify a symbolic branch
  348.           here.  You must specify the numeric branch number.  *Note
  349.           Magic branch numbers::, for an explanation.
  350.     `BRANCH1:BRANCH2'
  351.           A range of branches means all revisions on the branches in
  352.           that range.
  353.     `BRANCH.'
  354.           The latest revision in BRANCH.
  355.      A bare `-r' with no revisions means the latest revision on the
  356.      default branch, normally the trunk.
  357. `-sSTATES'
  358.      Print information about revisions whose state attributes match one
  359.      of the states given in the comma-separated list STATES.
  360.      Print the same as `-h', plus the descriptive text.
  361. `-wLOGINS'
  362.      Print information about revisions checked in by users with login
  363.      names appearing in the comma-separated list LOGINS.  If LOGINS is
  364.      omitted, the user's login is assumed.
  365.    `rlog' prints the intersection of the revisions selected with the
  366. options `-d', `-l', `-s', and `-w', intersected with the union of the
  367. revisions selected by `-b' and `-r'.
  368. File: cvs.info,  Node: log examples,  Prev: log options,  Up: log
  369. log examples
  370. ------------
  371.    Contributed examples are gratefully accepted.
  372. File: cvs.info,  Node: rdiff,  Next: release,  Prev: log,  Up: Invoking CVS
  373. rdiff--'patch' format diffs between releases
  374. ============================================
  375.    * rdiff [-flags] [-V vn] [-r t|-D d [-r t2|-D d2]] modules...
  376.    * Requires: repository.
  377.    * Changes: nothing.
  378.    * Synonym: patch
  379.    Builds a Larry Wall format patch(1) file between two releases, that
  380. can be fed directly into the patch program to bring an old release
  381. up-to-date with the new release.  (This is one of the few CVS commands
  382. that operates directly from the repository, and doesn't require a prior
  383. checkout.) The diff output is sent to the standard output device.
  384.    You can specify (using the standard `-r' and `-D' options) any
  385. combination of one or two revisions or dates.  If only one revision or
  386. date is specified, the patch file reflects differences between that
  387. revision or date and the current head revisions in the RCS file.
  388.    Note that if the software release affected is contained in more than
  389. one directory, then it may be necessary to specify the `-p' option to
  390. the patch command when patching the old sources, so that patch is able
  391. to find the files that are located in other directories.
  392. * Menu:
  393. * rdiff options::               rdiff options
  394. * rdiff examples::              rdiff examples
  395. File: cvs.info,  Node: rdiff options,  Next: rdiff examples,  Up: rdiff
  396. rdiff options
  397. -------------
  398.    These standard options are supported by `rdiff' (*note Common
  399. options::., for a complete description of them):
  400. `-D DATE'
  401.      Use the most recent revision no later than DATE.
  402.      If no matching revision is found, retrieve the most recent
  403.      revision (instead of ignoring the file).
  404.      Local; don't descend subdirectories.
  405. `-r TAG'
  406.      Use revision TAG.
  407.    In addition to the above, these options are available:
  408.      Use the context diff format.  This is the default format.
  409.      Create a summary change report instead of a patch.  The summary
  410.      includes information about files that were changed or added
  411.      between the releases.  It is sent to the standard output device.
  412.      This is useful for finding out, for example, which files have
  413.      changed between two dates or revisions.
  414.      A diff of the top two revisions is sent to the standard output
  415.      device.  This is most useful for seeing what the last change to a
  416.      file was.
  417.      Use the unidiff format for the context diffs.  This option is not
  418.      available if your diff does not support the unidiff format.
  419.      Remember that old versions of the `patch' program can't handle the
  420.      unidiff format, so if you plan to post this patch to the net you
  421.      should probably not use `-u'.
  422. `-V VN'
  423.      Expand RCS keywords according to the rules current in RCS version
  424.      VN (the expansion format changed with RCS version 5).
  425. File: cvs.info,  Node: rdiff examples,  Prev: rdiff options,  Up: rdiff
  426. rdiff examples
  427. --------------
  428.    Suppose you receive mail from foo@bar.com asking for an update from
  429. release 1.2 to 1.4 of the tc compiler.  You have no such patches on
  430. hand, but with CVS that can easily be fixed with a command such as this:
  431.      $ cvs rdiff -c -r FOO1_2 -r FOO1_4 tc | \
  432.      $$ Mail -s 'The patches you asked for' foo@bar.com
  433.    Suppose you have made release 1.3, and forked a branch called
  434. `R_1_3fix' for bugfixes.  `R_1_3_1' corresponds to release 1.3.1, which
  435. was made some time ago.  Now, you want to see how much development has
  436. been done on the branch.  This command can be used:
  437.      $ cvs patch -s -r R_1_3_1 -r R_1_3fix module-name
  438.      cvs rdiff: Diffing module-name
  439.      File ChangeLog,v changed from revision 1.52.2.5 to 1.52.2.6
  440.      File foo.c,v changed from revision 1.52.2.3 to 1.52.2.4
  441.      File bar.h,v changed from revision 1.29.2.1 to 1.2
  442. File: cvs.info,  Node: release,  Next: remove,  Prev: rdiff,  Up: Invoking CVS
  443. release--Indicate that a Module is no longer in use
  444. ===================================================
  445.    * release [-d] modules...
  446.    * Requires: Working directory.
  447.    * Changes: Working directory, history log.
  448.    This command is meant to safely cancel the effect of `cvs checkout'.
  449. Since CVS doesn't lock files, it isn't strictly necessary to use this
  450. command.  You can always simply delete your working directory, if you
  451. like; but you risk losing changes you may have forgotten, and you leave
  452. no trace in the CVS history file (*note history file::.) that you've
  453. abandoned your checkout.
  454.    Use `cvs release' to avoid these problems.  This command checks that
  455. no uncommitted changes are present; that you are executing it from
  456. immediately above a CVS working directory; and that the repository
  457. recorded for your files is the same as the repository defined in the
  458. module database.
  459.    If all these conditions are true, `cvs release' leaves a record of
  460. its execution (attesting to your intentionally abandoning your
  461. checkout) in the CVS history log.
  462. * Menu:
  463. * release options::             release options
  464. * release output::              release options
  465. * release examples::            release examples
  466. File: cvs.info,  Node: release options,  Next: release output,  Up: release
  467. release options
  468. ---------------
  469.    The `release' command supports one command option:
  470.      Delete your working copy of the file if the release succeeds.  If
  471.      this flag is not given your files will remain in your working
  472.      directory.
  473.      *Warning:*  The `release' command uses `rm -r `module'' to delete
  474.      your file.  This has the very serious side-effect that any
  475.      directory that you have created inside your checked-out sources,
  476.      and not added to the repository (using the `add' command; *note
  477.      add::.) will be silently deleted--even if it is non-empty!
  478. File: cvs.info,  Node: release output,  Next: release examples,  Prev: release options,  Up: release
  479. release output
  480. --------------
  481.    Before `release' releases your sources it will print a one-line
  482. message for any file that is not up-to-date.
  483.    *Warning:*  Any new directories that you have created, but not added
  484. to the CVS directory hierarchy with the `add' command (*note add::.)
  485. will be silently ignored (and deleted, if `-d' is specified), even if
  486. they contain files.
  487. `U FILE'
  488.      There exists a newer revision of this file in the repository, and
  489.      you have not modified your local copy of the file.
  490. `A FILE'
  491.      The file has been added to your private copy of the sources, but
  492.      has not yet been committed to the repository.  If you delete your
  493.      copy of the sources this file will be lost.
  494. `R FILE'
  495.      The file has been removed from your private copy of the sources,
  496.      but has not yet been removed from the repository, since you have
  497.      not yet committed the removal.  *Note commit::.
  498. `M FILE'
  499.      The file is modified in your working directory.  There might also
  500.      be a newer revision inside the repository.
  501. `? FILE'
  502.      FILE is in your working directory, but does not correspond to
  503.      anything in the source repository, and is not in the list of files
  504.      for CVS to ignore (see the description of the `-I' option, and
  505.      *note cvsignore::.).  If you remove your working sources, this
  506.      file will be lost.
  507.      Note that no warning message like this is printed for spurious
  508.      directories that CVS encounters.  The directory, and all its
  509.      contents, are silently ignored.
  510. File: cvs.info,  Node: release examples,  Prev: release output,  Up: release
  511. release examples
  512. ----------------
  513.    Release the module, and delete your local working copy of the files.
  514.      $ cd ..         # You must stand immediately above the
  515.                      # sources when you issue `cvs release'.
  516.      $ cvs release -d tc
  517.      You have [0] altered files in this repository.
  518.      Are you sure you want to release (and delete) module `tc': y
  519.      $
  520. File: cvs.info,  Node: remove,  Next: rtag,  Prev: release,  Up: Invoking CVS
  521. remove--Remove an entry from the repository
  522. ===========================================
  523.    * remove [-lR] [files...]
  524.    * Requires: Working directory.
  525.    * Changes: Working directory.
  526.    * Synonyms: rm, delete
  527.    Use this command to declare that you wish to remove files from the
  528. source repository.  Like most CVS commands, `cvs remove' works on files
  529. in your working directory, not directly on the repository.  As a
  530. safeguard, it also requires that you first erase the specified files
  531. from your working directory.
  532.    The files are not actually removed until you apply your changes to
  533. the repository with `commit'; at that point, the corresponding RCS
  534. files in the source repository are moved into the `Attic' directory
  535. (also within the source repository).
  536.    This command is recursive by default, scheduling all physically
  537. removed files that it finds for removal by the next commit.  Use the
  538. `-l' option to avoid this recursion, or just specify the actual files
  539. that you wish removed.
  540. * Menu:
  541. * remove options::              remove options
  542. * remove examples::             remove examples
  543. File: cvs.info,  Node: remove options,  Next: remove examples,  Up: remove
  544. remove options
  545. --------------
  546.    Two of the standard options are the only options supported by
  547. `remove'.
  548.      Local; run only in current working directory.
  549.      Commit directories recursively.  This is on by default.
  550. File: cvs.info,  Node: remove examples,  Prev: remove options,  Up: remove
  551. remove examples
  552. ---------------
  553. Remove a couple of files.
  554. .........................
  555.      $ cd test
  556.      $ rm ?.c
  557.      $ cvs remove
  558.      cvs remove: Removing .
  559.      cvs remove: scheduling a.c for removal
  560.      cvs remove: scheduling b.c for removal
  561.      cvs remove: use 'cvs commit' to remove these files permanently
  562.      $ cvs ci -m "Removed unneeded files"
  563.      cvs commit: Examining .
  564.      cvs commit: Committing .
  565. Resurrecting removed files
  566. ..........................
  567.    If you change your mind you can easily resurrect the file before you
  568. commit it, using the `add' command.
  569.      $ ls
  570.      CVS   ja.h  oj.c
  571.      $ rm oj.c
  572.      $ cvs remove oj.c
  573.      cvs remove: scheduling oj.c for removal
  574.      cvs remove: use 'cvs commit' to remove this file permanently
  575.      $ cvs add oj.c
  576.      U oj.c
  577.      cvs add: oj.c, version 1.1.1.1, resurrected
  578.    If you realize your mistake before you run the `remove' command you
  579. can use `update' to resurrect the file:
  580.      $ rm oj.c
  581.      $ cvs update oj.c
  582.      cvs update: warning: oj.c was lost
  583.      U oj.c
  584. File: cvs.info,  Node: rtag,  Next: status,  Prev: remove,  Up: Invoking CVS
  585. rtag--Add a tag to the RCS file
  586. ===============================
  587.    * rtag [-falnR] [-b] [-d] [-r tag | -Ddate] symbolic_tag modules...
  588.    * Requires: repository.
  589.    * Changes: repository.
  590.    * Synonym: rfreeze
  591.    You can use this command to assign symbolic tags to particular,
  592. explicitly specified source revisions in the repository.  `rtag' works
  593. directly on the repository contents (and requires no prior checkout).
  594. Use `tag' instead (*note tag::.), to base the selection of revisions on
  595. the contents of your working directory.
  596.    If you attempt to use a tag name that already exists, CVS will
  597. complain and not overwrite that tag.  Use the `-F' option to force the
  598. new tag value.
  599. * Menu:
  600. * rtag options::                rtag options
  601. File: cvs.info,  Node: rtag options,  Up: rtag
  602. rtag options
  603. ------------
  604.    These standard options are supported by `rtag' (*note Common
  605. options::., for a complete description of them):
  606. `-D DATE'
  607.      Tag the most recent revision no later than DATE.
  608.      Only useful with the `-D DATE' or `-r TAG' flags.  If no matching
  609.      revision is found, use the most recent revision (instead of
  610.      ignoring the file).
  611.      Overwrite an existing tag of the same name on a different
  612.      revision.  This option is new in CVS 1.4.  The old behavior is
  613.      matched by `cvs tag -F'.
  614.      Local; run only in current working directory.
  615.      Do not run any tag program that was specified with the `-t' flag
  616.      inside the `modules' file.  (*note modules::.).
  617.      Commit directories recursively.  This is on by default.
  618. `-r TAG'
  619.      Only tag those files that contain TAG.  This can be used to rename
  620.      a tag: tag only the files identified by the old tag, then delete
  621.      the old tag, leaving the new tag on exactly the same files as the
  622.      old tag.
  623.    In addition to the above common options, these options are available:
  624.      Use the `-a' option to have `rtag' look in the `Attic' (*note
  625.      Removing files::.) for removed files that contain the specified
  626.      tag.  The tag is removed from these files, which makes it
  627.      convenient to re-use a symbolic tag as development continues (and
  628.      files get removed from the up-coming distribution).
  629.      Make the tag a branch tag.  *Note Branches::.
  630.      Delete the tag instead of creating it.
  631.      In general, tags (often the symbolic names of software
  632.      distributions) should not be removed, but the `-d' option is
  633.      available as a means to remove completely obsolete symbolic names
  634.      if necessary (as might be the case for an Alpha release, or if you
  635.      mistagged a module).
  636. File: cvs.info,  Node: status,  Next: tag,  Prev: rtag,  Up: Invoking CVS
  637. status--Status info on the revisions
  638. ====================================
  639.    * status [-lR] [-v] [files...]
  640.    * Requires: working directory, repository.
  641.    * Changes: nothing.
  642.    Display a brief report on the current status of files with respect
  643. to the source repository, including any sticky tags, dates, or `-k'
  644. options.
  645.    You can also use this command to determine the potential impact of a
  646. `cvs update' on your working source directory--but remember that things
  647. might change in the repository before you run `update'.
  648. * Menu:
  649. * status options::              status options
  650. File: cvs.info,  Node: status options,  Up: status
  651. status options
  652. --------------
  653.    These standard options are supported by `status' (*note Common
  654. options::., for a complete description of them):
  655.      Local; run only in current working directory.
  656.      Commit directories recursively.  This is on by default.
  657.    There is one additional option:
  658.      Verbose.  In addition to the information normally displayed, print
  659.      all symbolic tags, together with the numerical value of the
  660.      revision or branch they refer to.
  661. File: cvs.info,  Node: tag,  Next: update,  Prev: status,  Up: Invoking CVS
  662. tag--Add a symbolic tag to checked out version of RCS file
  663. ==========================================================
  664.    * tag [-lR] [-b] [-d] symbolic_tag [files...]
  665.    * Requires: working directory, repository.
  666.    * Changes: repository.
  667.    * Synonym: freeze
  668.    Use this command to assign symbolic tags to the nearest repository
  669. versions to your working sources.  The tags are applied immediately to
  670. the repository, as with `rtag', but the versions are supplied
  671. implicitly by the CVS records of your working files' history rather than
  672. applied explicitly.
  673.    One use for tags is to record a snapshot of the current sources when
  674. the software freeze date of a project arrives.  As bugs are fixed after
  675. the freeze date, only those changed sources that are to be part of the
  676. release need be re-tagged.
  677.    The symbolic tags are meant to permanently record which revisions of
  678. which files were used in creating a software distribution.  The
  679. `checkout' and `update' commands allow you to extract an exact copy of
  680. a tagged release at any time in the future, regardless of whether files
  681. have been changed, added, or removed since the release was tagged.
  682.    This command can also be used to delete a symbolic tag, or to create
  683. a branch.  See the options section below.
  684.    If you attempt to use a tag name that already exists, CVS will
  685. complain and not overwrite that tag.  Use the `-F' option to force the
  686. new tag value.
  687. * Menu:
  688. * tag options::                 tag options
  689. File: cvs.info,  Node: tag options,  Up: tag
  690. tag options
  691. -----------
  692.    These standard options are supported by `tag' (*note Common
  693. options::., for a complete description of them):
  694.      Overwrite an existing tag of the same name on a different
  695.      revision.  This option is new in CVS 1.4.  The old behavior is
  696.      matched by `cvs tag -F'.
  697.      Local; run only in current working directory.
  698.      Commit directories recursively.  This is on by default.
  699.    Two special options are available:
  700.      The -b option makes the tag a branch tag (*note Branches::.),
  701.      allowing concurrent, isolated development.  This is most useful
  702.      for creating a patch to a previously released software
  703.      distribution.
  704.      Delete a tag.
  705.      If you use `cvs tag -d symbolic_tag', the symbolic tag you specify
  706.      is deleted instead of being added.  Warning: Be very certain of
  707.      your ground before you delete a tag; doing this permanently
  708.      discards some historical information, which may later turn out to
  709.      be valuable.
  710. File: cvs.info,  Node: update,  Prev: tag,  Up: Invoking CVS
  711. update--Bring work tree in sync with repository
  712. ===============================================
  713.    * update [-AdflPpR] [-d] [-r tag|-D date] files...
  714.    * Requires: repository, working directory.
  715.    * Changes: working directory.
  716.    After you've run checkout to create your private copy of source from
  717. the common repository, other developers will continue changing the
  718. central source.  From time to time, when it is convenient in your
  719. development process, you can use the `update' command from within your
  720. working directory to reconcile your work with any revisions applied to
  721. the source repository since your last checkout or update.
  722. * Menu:
  723. * update options::              update options
  724. * update output::               update output
  725. * update examples::             update examples
  726. File: cvs.info,  Node: update options,  Next: update output,  Up: update
  727. update options
  728. --------------
  729.    These standard options are available with `update' (*note Common
  730. options::., for a complete description of them):
  731. `-D date'
  732.      Use the most recent revision no later than DATE.  This option is
  733.      sticky, and implies `-P'.
  734.      Only useful with the `-D DATE' or `-r TAG' flags.  If no matching
  735.      revision is found, retrieve the most recent revision (instead of
  736.      ignoring the file).
  737. `-k KFLAG'
  738.      Process RCS keywords according to KFLAG.  See co(1).  This option
  739.      is sticky; future updates of this file in this working directory
  740.      will use the same KFLAG.  The `status' command can be viewed to
  741.      see the sticky options.  *Note status::.
  742.      Local; run only in current working directory.  *Note Recursive
  743.      behavior::.
  744.      Prune empty directories.
  745.      Pipe files to the standard output.
  746.      Operate recursively.  This is on by default.  *Note Recursive
  747.      behavior::.
  748. `-r tag'
  749.      Retrieve revision TAG.  This option is sticky, and implies `-P'.
  750.    These special options are also available with `update'.
  751.      Reset any sticky tags, dates, or `-k' options.  (If you get a
  752.      working copy of a file by using one of the `-r', `-D', or `-k'
  753.      options, CVS remembers the corresponding tag, date, or KFLAG and
  754.      continues using it on future updates; use the `-A' option to make
  755.      CVS forget these specifications, and retrieve the head revision of
  756.      the file).
  757.      Create any directories that exist in the repository if they're
  758.      missing from the working directory.  Normally, `update' acts only
  759.      on directories and files that were already enrolled in your
  760.      working directory.
  761.      This is useful for updating directories that were created in the
  762.      repository since the initial checkout; but it has an unfortunate
  763.      side effect.  If you deliberately avoided certain directories in
  764.      the repository when you created your working directory (either
  765.      through use of a module name or by listing explicitly the files
  766.      and directories you wanted on the command line), then updating
  767.      with `-d' will create those directories, which may not be what you
  768.      want.
  769. `-I NAME'
  770.      Ignore files whose names match NAME (in your working directory)
  771.      during the update.  You can specify `-I' more than once on the
  772.      command line to specify several files to ignore.  Use `-I !' to
  773.      avoid ignoring any files at all.  *Note cvsignore::, for other
  774.      ways to make CVS ignore some files.
  775. `-WSPEC'
  776.      Specify file names that should be filtered during update.  You can
  777.      use this option repeatedly.
  778.      SPEC can be a file name pattern of the same type that you can
  779.      specify in the `.cvswrappers' file. *Note Wrappers::.
  780. `-jREVISION'
  781.      With two `-j' options, merge changes from the revision specified
  782.      with the first `-j' option to the revision specified with the
  783.      second `j' option, into the working directory.
  784.      With one `-j' option, merge changes from the ancestor revision to
  785.      the revision specified with the `-j' option, into the working
  786.      directory.  The ancestor revision is the common ancestor of the
  787.      revision which the working directory is based on, and the revision
  788.      specified in the `-j' option.
  789.      In addition, each -j option can contain an optional date
  790.      specification which, when used with branches, can limit the chosen
  791.      revision to one within a specific date.  An optional date is
  792.      specified by adding a colon (:) to the tag:
  793.      `-jSYMBOLIC_TAG:DATE_SPECIFIER'.
  794.      *Note Merging::.
  795. File: cvs.info,  Node: update output,  Next: update examples,  Prev: update options,  Up: update
  796. update output
  797. -------------
  798.    `update' keeps you informed of its progress by printing a line for
  799. each file, preceded by one character indicating the status of the file:
  800. `U FILE'
  801.      The file was brought up to date with respect to the repository.
  802.      This is done for any file that exists in the repository but not in
  803.      your source, and for files that you haven't changed but are not
  804.      the most recent versions available in the repository.
  805. `A FILE'
  806.      The file has been added to your private copy of the sources, and
  807.      will be added to the source repository when you run `commit' on
  808.      the file.  This is a reminder to you that the file needs to be
  809.      committed.
  810. `R FILE'
  811.      The file has been removed from your private copy of the sources,
  812.      and will be removed from the source repository when you run
  813.      `commit' on the file.  This is a reminder to you that the file
  814.      needs to be committed.
  815. `M FILE'
  816.      The file is modified in  your  working  directory.
  817.      `M' can indicate one of two states for a file you're working on:
  818.      either there were no modifications to the same file in the
  819.      repository, so that your file remains as you last saw it; or there
  820.      were modifications in the repository as well as in your copy, but
  821.      they were merged successfully, without conflict, in your working
  822.      directory.
  823.      CVS will print some messages if it merges your work, and a backup
  824.      copy of your working file (as it looked before you ran `update')
  825.      will be made.  The exact name of that file is printed while
  826.      `update' runs.
  827. `C FILE'
  828.      A conflict was detected while trying to merge your changes to FILE
  829.      with changes from the source repository.  FILE (the copy in your
  830.      working directory) is now the output of the rcsmerge(1) command on
  831.      the two revisions; an unmodified copy of your file is also in your
  832.      working directory, with the name `.#FILE.REVISION' where REVISION
  833.      is the RCS revision that your modified file started from.  (Note
  834.      that some systems automatically purge files that begin with `.#'
  835.      if they have not been accessed for a few days.  If you intend to
  836.      keep a copy of your original file, it is a very good idea to rename
  837.      it.)
  838. `? FILE'
  839.      FILE is in your working directory, but does not correspond to
  840.      anything in the source repository, and is not in the list of files
  841.      for CVS to ignore (see the description of the `-I' option, and
  842.      *note cvsignore::.).
  843.      Note that no warning message like this is printed for spurious
  844.      directories that CVS encounters.  The directory, and all its
  845.      contents, are silently ignored.
  846. File: cvs.info,  Node: update examples,  Prev: update output,  Up: update
  847. update examples
  848. ---------------
  849.    The following line will display all files which are not up-to-date
  850. without actually change anything in your working directory.  It can be
  851. used to check what has been going on with the project.
  852.      $ cvs -n -q update
  853. File: cvs.info,  Node: Administrative files,  Next: Environment variables,  Prev: Invoking CVS,  Up: Top
  854. Reference manual for the Administrative files
  855. *********************************************
  856.    Inside the repository, in the directory `$CVSROOT/CVSROOT', there
  857. are a number of supportive files for CVS.  You can use CVS in a limited
  858. fashion without any of them, but if they are set up properly they can
  859. help make life easier.
  860.    The most important of these files is the `modules' file, which
  861. defines the modules inside the repository.
  862. * Menu:
  863. * modules::                     Defining modules
  864. * Wrappers::                    Treat directories as files
  865. * commit files::                The commit support files
  866. * commitinfo::                  Pre-commit checking
  867. * editinfo::                    Specifying how log messages are created
  868. * loginfo::                     Where should log messages be sent?
  869. * rcsinfo::                     Templates for the log messages
  870. * cvsignore::                   Ignoring files via cvsignore
  871. * history file::                History information
  872. * Setting up::                  Setting up the repository
  873. File: cvs.info,  Node: modules,  Next: Wrappers,  Up: Administrative files
  874. The modules file
  875. ================
  876.    The `modules' file records your definitions of names for collections
  877. of source code.  CVS will use these definitions if you create a file
  878. with the right format in `$CVSROOT/CVSROOT/modules,v'.  The
  879. mkmodules(1) command should be run whenever the modules file changes,
  880. so that the appropriate files can be generated (depending on how you
  881. have configured CVS operation).
  882.    To allow convenient editing of the `modules' file itself, the file
  883. should include an entry like the following (where LOCALBIN represents
  884. the directory where your site installs programs like mkmodules(1)):
  885.      modules    -i /LOCALBIN/mkmodules CVSROOT modules
  886. This defines the name `modules' as the module name for the file itself,
  887. so that you can use
  888.      $ cvs checkout modules
  889. to get a copy of the file that you can edit.  You should define similar
  890. module entries for the other configuration files described in this
  891. appendix, except `history').
  892.    The `modules' file may contain blank lines and comments (lines
  893. beginning with `#') as well as module definitions.  Long lines can be
  894. continued on the next line by specifying a backslash (`\') as the last
  895. character on the line.
  896.    A module definition is a single line of the `modules' file, in
  897. either of two formats.  In both cases, MNAME represents the symbolic
  898. module name, and the remainder of the line is its definition.
  899. `MNAME -a ALIASES...'
  900.      This represents the simplest way of defining a module MNAME.  The
  901.      `-a' flags the definition as a simple alias: CVS will treat any
  902.      use of MNAME (as a command argument) as if the list of names
  903.      ALIASES had been specified instead.  ALIASES may contain either
  904.      other module names or paths.  When you use paths in aliases,
  905.      `checkout' creates all intermediate directories in the working
  906.      directory, just as if the path had been specified explicitly in
  907.      the CVS arguments.
  908. `MNAME [ options ] DIR [ FILES... ] [ &MODULE... ]'
  909.      In the simplest case, this form of module definition reduces to
  910.      `MNAME DIR'.  This defines all the files in directory DIR as
  911.      module mname.  DIR is a relative path (from `$CVSROOT') to a
  912.      directory of source in the source repository.  In this case, on
  913.      checkout, a single directory called MNAME is created as a working
  914.      directory; no intermediate directory levels are used by default,
  915.      even if DIR was a path involving several directory levels.
  916.      By explicitly specifying files in the module definition after DIR,
  917.      you can select particular files from directory DIR.  The sample
  918.      definition for `modules' is an example of a module defined with a
  919.      single file from a particular directory.  Here is another example:
  920.           m4test  unsupported/gnu/m4 foreach.m4 forloop.m4
  921.      With this definition, executing `cvs checkout m4test' will create
  922.      a single working directory `m4test' containing the two files
  923.      listed, which both come from a common directory several levels deep
  924.      in the CVS source repository.
  925.      A module definition can refer to other modules by including
  926.      `&MODULE' in its definition.  `checkout' creates a subdirectory
  927.      for each such module, in your working directory.
  928.     `-d NAME'
  929.           Name the working directory something other than the module
  930.           name.
  931.     `-e PROG'
  932.           Specify a program PROG to run whenever files in a module are
  933.           exported.  PROG runs with a single argument, the module name.
  934.     `-i PROG'
  935.           Specify a program PROG to run whenever files in a module are
  936.           committed.  PROG runs with a single argument, the full
  937.           pathname of the affected directory in a source repository.
  938.           The `commitinfo', `loginfo', and `editinfo' files provide
  939.           other ways to call a program on commit.
  940.     `-o PROG'
  941.           Specify a program PROG to run whenever files in a module are
  942.           checked out.  PROG runs with a single argument, the module
  943.           name.
  944.     `-s STATUS'
  945.           Assign a status to the module.  When the module file is
  946.           printed with `cvs checkout -s' the modules are sorted
  947.           according to primarily module status, and secondarily
  948.           according to the module name.  This option has no other
  949.           meaning.  You can use this option for several things besides
  950.           status: for instance, list the person that is responsible for
  951.           this module.
  952.     `-t PROG'
  953.           Specify a program PROG to run whenever files in a module are
  954.           tagged with `rtag'.  PROG runs with two arguments: the module
  955.           name and the symbolic tag specified to `rtag'.  There is no
  956.           way to specify a program to run when `tag' is executed.
  957.     `-u PROG'
  958.           Specify a program PROG to run whenever `cvs update' is
  959.           executed from the top-level directory of the checked-out
  960.           module.  PROG runs with a single argument, the full path to
  961.           the source repository for this module.
  962.